home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / BASICWNT.ZIP / LOOP.BAS < prev    next >
Encoding:
BASIC Source File  |  1996-02-11  |  181 b   |  9 lines

  1. 1 rem *
  2. 2 rem *
  3. 3 rem *_LOOP_SAMPLE_FOR_NITROUSBASIC
  4. 4 rem *
  5. 5 rem *
  6. 10 for I=1 to 5 :for J=1 to 5 :for K=1 to 5 
  7. 20 print "i=";I,"j=";J,"k=";K
  8. 30 next K:next J:next I:end 
  9.